home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue25 / system / FINDER.DPR next >
Encoding:
Text File  |  1997-08-05  |  188 b   |  14 lines

  1. program Finder;
  2.  
  3. uses
  4.   Forms,
  5.   Ufinder in 'UFINDER.PAS' {Form1},
  6.   TFind in 'TFind.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.